home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 21 / PC Format CD-ROM Collection 21 (1995-12)(Future Publishing)(GB)[issue 51].iso / machines / install.bat next >
DOS Batch File  |  1995-07-31  |  780b  |  44 lines

  1. echo off
  2. cls
  3.  
  4. if "%1"=="" goto error
  5. if "%2"=="" goto error
  6.  
  7. %1\junkyard.exe
  8.  
  9. @echo.
  10. @echo Installing the game to %2\MACDEMO
  11. @echo.
  12.  
  13. %2
  14. md %2\MACDEMO
  15. cd %2\MACDEMO
  16. %1\pak
  17. call machines.bat
  18. cls
  19. @echo The Machines installation complete
  20. @echo.
  21. @echo Type MACHINES to play the game
  22. @echo.
  23. goto end
  24.  
  25. :error
  26. echo.
  27. echo                         The Machines game installation
  28. echo.
  29. echo.
  30. echo                Please specify the source and destination drive:-
  31. echo.  
  32. echo                                 for example:-
  33. echo.
  34. echo      If your floppy drive is drive A, and your hard-disk is drive C, type:-
  35. echo                               A:\INSTALL A: C:
  36. echo.
  37. echo.
  38. echo                            (C) 1995 Merit Studios
  39. echo.
  40. goto end
  41.  
  42. :end
  43.  
  44.